home *** CD-ROM | disk | FTP | other *** search
/ Software USA 4 #11 / Software USA Volume 4.11.iso / mac / Educational / mac06 / usr / include / sys / sys⁄times.h < prev    next >
Encoding:
Text File  |  1998-07-24  |  249 b   |  19 lines  |  [TEXT/SPM ]

  1. /* mac06©1997,98 by HNS/DSITRI hns@computer.org
  2. ** sys/times.h
  3. */
  4.  
  5. #pragma once
  6.  
  7. #include "clock_t.h"
  8.  
  9. struct tms
  10.     {
  11.     clock_t    tms_utime;
  12.     clock_t    tms_stime;
  13.     clock_t    tms_cutime;
  14.     clock_t    tms_cstime;
  15.     };
  16.  
  17. clock_t times(struct tms *buffer);
  18.  
  19. /* EOF */